home *** CD-ROM | disk | FTP | other *** search
/ Chip: Special XP & Vista / Chip Spesial XP & Vista.iso / 1_Audio_Video / MediaCoder / MediaCoder-0.6.1.4098.exe / htdocs / start.7z / main.js < prev    next >
Text File  |  2007-03-23  |  372b  |  14 lines

  1. function Wiki(title)
  2. {
  3.     window.location = "http://mediacoder.sourceforge.net/wiki/index.php?title=" + title;
  4. }
  5.  
  6. function GetUrlArg(name)
  7. {
  8.     var idx=document.location.href.indexOf(name+'=');
  9.     if (idx<=0) return null;
  10.     var argstr=document.location.href.substring(idx+name.length+1);
  11.     idx = argstr.indexOf('&');
  12.     return idx>=0?argstr.substring(0, idx):argstr;
  13. }
  14.